home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Sprocket Framework DR2 / Sprocket Starter / SprocketStarter Code / UTextWindow.c < prev    next >
Text File  |  1996-06-15  |  7KB  |  296 lines

  1. /*
  2.  
  3.     File:        UTextWindow.cp
  4.     Project:    Sample code for Sprocket Framework 1.1 (DR2), released 6/15/96
  5.     Contains:    Utilites for the WASTE based text editing window
  6.     To Do:        ?
  7.  
  8.     Sprocket Major Contributors:
  9.     ----------------------------
  10.     Dave Falkenburg, producer of Sprocket 1.0
  11.     Bill Hayden,     producer of Sprocket 1.1
  12.     Steve Sisak,     producer of the upcoming Sprocket 2.0
  13.     
  14.     Pete Alexander        Steve Falkenburg    Randy Thelen
  15.     Eric Berdahl        Nitin Ganatra        Chris K. Thomas
  16.     Marshall Clow        Dave Hershey        Leonard Rosenthal
  17.     Tim Craycroft        Dave Mark            Dean Yu
  18.     David denBoer        Gary Powell
  19.     Cameron Esfahani    Jon Summers            Apple Computer, Inc.
  20.         
  21.     Comments, Additions, or Corrections:
  22.     ------------------------------------
  23.     Bill Hayden, Nikol Software <nikol@codewell.com>
  24.  
  25. */
  26.  
  27.  
  28. #ifndef __CONTROLS__
  29. #include <Controls.h>
  30. #endif
  31. #ifndef __FIXMATH__
  32. #include <FixMath.h>
  33. #endif
  34. #ifndef __TOOLUTILS__
  35. #include <ToolUtils.h>
  36. #endif
  37.  
  38. #include "limits.h"
  39. #include "UTextWindow.h"
  40.  
  41.  
  42. // long control auxiliary record used for keeping long settings
  43. // a handle to this record is stored in the reference field of the control record
  44.  
  45. struct    LCAuxRec
  46. {
  47.     long    value;    // long value
  48.     long    min;    // long min
  49.     long    max;    // long max
  50. };
  51. typedef struct LCAuxRec LCAuxRec, *LCAuxPtr, **LCAuxHandle;
  52.  
  53.  
  54.  
  55. OSErr    LCAttach( ControlRef control )
  56. {
  57.     Handle        aux;
  58.     LCAuxPtr    pAux;
  59.     OSErr        reply = noErr;
  60.     
  61.     /*    allocate the auxiliary record that will hold long settings */
  62.     
  63.     aux = NewHandleClear( sizeof( LCAuxRec ) );
  64.     if ( aux == NULL )
  65.     {
  66.         reply = MemError();
  67.         return    reply;
  68.     }
  69.     
  70.     /*    store a handle to the auxiliary record in the contrlRfCon field */
  71.     
  72.     SetControlReference( control, (long)aux );
  73.         
  74.     /*    copy current control settings into the auxiliary record */
  75.     
  76.     pAux = *((LCAuxHandle)aux);
  77.     pAux->value = GetControlValue( control );
  78.     pAux->min = GetControlMinimum( control );
  79.     pAux->max = GetControlMaximum( control );
  80.     
  81.     return reply;
  82. }
  83.  
  84.  
  85.  
  86. void    LCDetach( ControlRef control )
  87. {
  88.     Handle            aux;
  89.     
  90.     aux = (Handle)GetControlReference( control );
  91.         
  92.     if ( aux != NULL )
  93.     {
  94.         SetControlReference( control, 0 );        
  95.         DisposeHandle( aux );
  96.     }
  97.     
  98.     return;
  99. }
  100.  
  101.  
  102.  
  103. void    LCSetValue( ControlRef control, long value )
  104. {
  105.     LCAuxPtr        pAux;
  106.     short            controlMin, controlMax, newControlValue;
  107.         
  108.     pAux = *((LCAuxHandle)GetControlReference( control ));
  109.  
  110.     /*    make sure value is in the range min...max */
  111.     
  112.     if ( value < pAux->min )
  113.         value = pAux->min;
  114.     if ( value > pAux->max )
  115.         value = pAux->max;
  116.     
  117.     /*    save value in auxiliary record */
  118.     
  119.     pAux->value = value;
  120.     
  121.     /*    calculate new thumb position */
  122.     
  123.     controlMin = GetControlMinimum( control );
  124.     controlMax = GetControlMaximum( control );
  125.     newControlValue = controlMin + FixRound( FixMul ( FixDiv( value - pAux->min, 
  126.                 pAux->max - pAux->min), (controlMax - controlMin) << 16 ));
  127.     
  128.     /*    do nothing if the thumb position hasn't changed */
  129.     
  130.     if ( newControlValue != GetControlValue(control) )
  131.         SetControlValue( control, newControlValue );
  132.  
  133.     return;
  134. }
  135.  
  136. void    LCSetMin( ControlRef control, long min )
  137. {
  138.     LCAuxPtr        pAux;
  139.     
  140.     pAux = *((LCAuxHandle)GetControlReference( control ));
  141.     
  142.     /*    make sure min is less than or equal to max */
  143.     
  144.     if ( min > pAux->max )
  145.         min = pAux->max;
  146.     
  147.     /*    save min in auxiliary record */
  148.     pAux->min = min;
  149.     
  150.     /*    set contrlMin field to min or SHRT_MIN, whichever is greater */
  151.     
  152.     if ( min < SHRT_MIN )
  153.         min = SHRT_MIN;
  154.     
  155.     SetControlMinimum( control, min );
  156.     
  157.     /*    reset value */
  158.     
  159.     LCSetValue( control, pAux->value );
  160.     
  161.     return;
  162. }
  163.  
  164. void    LCSetMax( ControlRef control, long max )
  165. {
  166.     LCAuxPtr        pAux;
  167.     
  168.     pAux = *((LCAuxHandle)GetControlReference( control ));
  169.  
  170.     /*    make sure max is greater than or equal to min */
  171.     
  172.     if ( max < pAux->min )
  173.         max = pAux->min;
  174.     
  175.     /*    save max in auxiliary record */
  176.     
  177.     pAux->max = max;
  178.     
  179.     /*    set contrlMax field to max or SHRT_MAX, whichever is less */
  180.     
  181.     if ( max > SHRT_MAX )
  182.         max = SHRT_MAX;
  183.     
  184.     SetControlMaximum( control, max );
  185.     
  186.     /*    reset value */
  187.     
  188.     LCSetValue( control, pAux->value );
  189.     
  190.     return;
  191. }
  192.  
  193. /*    In each of these LCGetXXX() functions, there are 2 ways listed to do things.  They are
  194.     both the same thing and perform the same stuff, just one is easier to read than the
  195.     other (IMHO).  I asked Marco about it and he gave me the shorter code (what's commented
  196.     in each function) and gave me this explanation:
  197.     
  198.         This version [the commented code] yields smaller and faster code
  199.         (try disassembling both versions if you wish), but some people may
  200.         find it somewhat harder to read.
  201.     
  202.     I agree with Marco that his code is better overall, but in the interest of readabilty
  203.     (since this demo is a learning tool), I left my code in and put Marco's in commented
  204.     out.  Pick whichever you'd like to use.
  205. */
  206.  
  207.  
  208. long    LCGetValue( ControlRef control )
  209. {
  210.     //LCAuxPtr    pAux;
  211.     
  212.     //pAux = *((LCAuxHandle)GetControlReference( control ));
  213.  
  214.     //return pAux->value;
  215.  
  216. //    this is Marco's code.  Remember, this is a little harder to read, but overall
  217. //    yields tighter code.
  218.  
  219.     return (* (LCAuxHandle) GetControlReference(control)) -> value;
  220.  
  221. }
  222.  
  223.  
  224. long    LCGetMin( ControlRef control )
  225. {
  226.     //LCAuxPtr    pAux;
  227.     
  228.     //pAux = *((LCAuxHandle)GetControlReference( control ));
  229.     
  230.     //return pAux->min;
  231.  
  232. //    this is Marco's code.  Remember, this is a little harder to read, but overall
  233. //    yields tighter code.
  234.  
  235.     return (* (LCAuxHandle)GetControlReference(control)) -> min;
  236.     
  237. }
  238.  
  239.  
  240. long    LCGetMax( ControlRef control )
  241. {
  242.     //LCAuxPtr    pAux;
  243.     
  244.     //pAux = *((LCAuxHandle)GetControlReference( control ));
  245.     
  246.     //return pAux->max;
  247.  
  248. //    this is Marco's code.  Remember, this is a little harder to read, but overall
  249. //    yields tighter code.
  250.  
  251.     return (* (LCAuxHandle)GetControlReference(control)) -> max;
  252.  
  253. }
  254.  
  255.  
  256. void    LCSynch( ControlRef control )
  257. {
  258.     LCAuxPtr        pAux;
  259.     short            controlMin, controlMax, controlValue;
  260.     
  261.     controlMin = GetControlMinimum( control );
  262.     controlMax = GetControlMaximum( control );
  263.     controlValue = GetControlValue( control );    
  264.     pAux = *((LCAuxHandle)GetControlReference( control ));
  265.     
  266.     /*    calculate new long value */
  267.     
  268.     pAux->value = pAux->min + FixMul( FixRatio ( controlValue - controlMin,
  269.                   controlMax - controlMin), pAux->max - pAux->min );
  270.     
  271.     return;
  272. }
  273.  
  274.  
  275. // If MoreFiles is added to Sprocket, then this can get tossed
  276.  
  277. OSErr    CheckObjectLock(short vRefNum, long dirID, StringPtr name)
  278. {
  279.     CInfoPBRec pb;
  280.     OSErr error;
  281.     
  282.     pb.hFileInfo.ioNamePtr = name;
  283.     pb.hFileInfo.ioVRefNum = vRefNum;
  284.     pb.hFileInfo.ioDirID = dirID;
  285.     pb.hFileInfo.ioFDirIndex = 0;    // use ioNamePtr and ioDirID
  286.     error = PBGetCatInfoSync(&pb);
  287.     
  288.     if ( error == noErr )
  289.         {
  290.         // check locked bit
  291.         if ( (pb.hFileInfo.ioFlAttrib & 0x01) != 0 )
  292.             error = fLckdErr;
  293.         }
  294.     return ( error );
  295. }
  296.